home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / fbfiles.sql < prev    next >
Text File  |  2000-05-12  |  637b  |  17 lines

  1. /* RCSVER $Id: fbfiles.sql,v 1.2 1999-02-24 11:56:27-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        fbfiles.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the fbfiles table. This table defines all
  9. *        names of configuration files used in the farebox.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE fbfiles
  13. (
  14.     file_name    VARCHAR2(80),    /* Name of file ("CDISP.FBC") */
  15.     CONSTRAINT pk_fbfiles PRIMARY KEY (file_name)
  16. );
  17.